home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality StarterKit / Virtual Reality StarterKit.iso / dim20000 / swtdemo.bat < prev   
DOS Batch File  |  1993-10-11  |  984b  |  51 lines

  1. @echo off
  2. cls
  3. echo.
  4. echo           Welcome to Dimenision 3D Benchmark
  5. echo.
  6. echo  In order to fully understand 3D Benchmark, carefully
  7. echo  read the README file (option 2).
  8. echo.
  9. echo  Also if you wish to print out this file use option 3.
  10. echo.
  11. :start
  12. echo  Choose one of the selections below:
  13. echo.
  14. echo     1. RUN Virtual Reality Information. 
  15. echo     2. READ the README file.
  16. echo           (Use this option before running the software.)
  17. echo     3. Print out the README file.
  18. echo     4. QUIT.
  19. echo.
  20. echo     Please enter the number for your choice;   Enter 1-4 only.
  21. query
  22.  
  23. if errorlevel = 5 goto invalid
  24. if errorlevel = 4 goto end
  25. if errorlevel = 3 goto print
  26. if errorlevel = 2 goto read
  27. if errorlevel = 1 goto run
  28.  
  29. :invalid
  30. cls
  31. echo Invalid option
  32. goto start
  33. goto end
  34.  
  35. REM Run demo   
  36. :run
  37. 3dbench.exe 
  38. goto end
  39.  
  40. REM read readme
  41. :read
  42. cls
  43. call read.bat 
  44. goto start
  45.  
  46. :print
  47. print %1:\dim20000\3dbench.doc    
  48. goto start
  49.  
  50. :end
  51.